Merged
Conversation
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…/Container-Migration-Solution-Accelerator into psl-dependabot-changes
fix: Package Upgrade
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates backend and frontend dependencies (plus lockfiles) to pick up security/compatibility fixes and newer features, including newer Semantic Kernel and OpenAI/MCP versions, and introduces uv/npm override configuration to control transitive dependency versions.
Changes:
- Upgrade Python dependencies in
backend-apiandprocessor(e.g.,semantic-kernel,openai,mcp) and addprotobuf/ bumppython-multipart. - Add uv override configuration and record override manifests in uv lockfiles.
- Upgrade frontend dependencies (
axios,react-router-dom,rollup) and add npmoverridesforform-dataandminimatch.
Reviewed changes
Copilot reviewed 4 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| src/processor/uv.lock | Updates locked Python dependency set; adds manifest overrides; upgrades OpenAI/MCP/Semantic Kernel and others. |
| src/processor/pyproject.toml | Updates processor direct dependencies and adds [tool.uv] override-dependencies. |
| src/frontend/requirements.txt | Bumps python-multipart pin used by the frontend Python env. |
| src/frontend/package.json | Upgrades key JS deps and adds npm overrides for transitive dependency control. |
| src/frontend/package-lock.json | Regenerates lockfile to reflect JS dependency upgrades/overrides. |
| src/backend-api/uv.lock | Updates locked backend dependency set; adds manifest overrides; upgrades Semantic Kernel and adds protobuf/multipart to lock metadata. |
| src/backend-api/pyproject.toml | Updates backend direct dependencies; adds [tool.uv] override-dependencies. |
Files not reviewed (1)
- src/frontend/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
chore: update uv.lock files
Roopan-Microsoft
approved these changes
Mar 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
This pull request primarily updates dependencies across both backend and frontend components to address compatibility, security, and feature improvements. Notable changes include upgrading key libraries, adding new dependencies, and introducing override configurations for dependency management.
Dependency upgrades and additions:
semantic-kernelto version1.40.0in bothsrc/backend-api/pyproject.tomlandsrc/processor/pyproject.tomlfor enhanced AI integration and compatibility. [1] [2]protobuf==7.34.0to backend dependencies for improved serialization support. [1] [2]python-multipartfrom0.0.20to0.0.22in backend and frontend requirements for better file upload handling. [1] [2]openaito2.26.0andmcpto1.26.0insrc/processor/pyproject.tomlfor access to latest features and fixes.Frontend dependency updates:
axiosto1.13.6andreact-router-domto7.13.1insrc/frontend/package.jsonfor improved HTTP handling and routing. [1] [2]rollupto4.59.0and added overrides forform-dataandminimatchto address compatibility and security concerns.Dependency override configuration:
[tool.uv]override dependencies in both backendpyproject.tomlfiles to ensure consistent versions ofavandstarlette. [1] [2]Does this introduce a breaking change?
Golden Path Validation
Deployment Validation
What to Check
Verify that the following are valid
Other Information